Ⅰ 如何在C語言中輸入百分數
只要在格式控制符里輸入2個 %% 就可以了,例如:
#include <stdio.h>
int main()
{
int a=90;
printf("%d%% ",a);
return 0;
}
這樣就會在屏幕上得到 90%
輸出的簡單代碼
代碼一:
#include<stdio.h>
int main()
{
printf("%%");
return 0;
}
代碼二:
#include<stdio.h>
int main()
{
printf("\%");
return 0;
}
註:在這一對代碼中,1能夠顯示百分號,2不能
Ⅱ 請問在c語言中如何輸出百分數
只要在格式控制符里輸入2個 %% 就可以了,例如:
#include <stdio.h>
int main()
{
int a=90;
printf("%d%% ",a);
return 0;
}
這樣就會在屏幕上得到 90%
輸出內的簡單代碼
代碼一:容
#include<stdio.h>
int main()
{
printf("%%");
return 0;
}
代碼二:
#include<stdio.h>
int main()
{
printf("\%");
return 0;
}
註:在這一對代碼中,1能夠顯示百分號,2不能