让计算机从1打印到100再打印到1,例如:1 2 3 ······ 98 99 100 99 98 ······ 3 2 1。
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a,b;
a=1;
b=99;
while(a<=100)
{
printf("%d",a);
a=a+1;
}
while(a=101 && b>=1)
{
printf("%d",b);
b=b-1;
}
system(“pause”);
return 0;
}
欢迎学习交流!