TODAY'S PRATICE
生活随笔
收集整理的這篇文章主要介紹了
TODAY'S PRATICE
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
問題:1.對于if語句用法還不夠熟練。
? ? ? ? ? ? 2.不了解如何將輸出界面更優化得到應有的界面形式。
? ? ? ? ? ? 3.對于scanf的了解也不夠深入,加強。
? ? ? ? ? ? 4.數學功底不足。
#define _CRT_SECURE_NO_WARNINGS?
#include<stdio.h>
#include<windows.h>
int main()
{
int i, j;
for (i = 100; i <= 200; i++)
{
for (j = 2; j <= i / 2; j++)
if (i%j == 0)
{
break;
}
if (i%j != 0)
{
printf("%d\n", i);
}
system("pause");
return 0;
}
乘法口訣表輸出。
#define _CRT_SECURE_NO_WARNINGS?
#include<stdio.h>
#include<windows.h>
int main()
{
int a, b,n;
int R = 0;
n = 0;
for (a = 1; a <10; a++)
{
for (b = 1; b <10; ++b)
{
R = a*b;
printf("%d*%d=%d\t", a, b, R,n++);
if (n % 9 == 0)
printf("\n");
}
}
system("pause");
return 0;
}
1000~2000年閏年判斷。
#define _CRT_SECURE_NO_WARNINGS?
#include<stdio.h>
#include<windows.h>
int main()
{
int year;
scanf("%d", &year);
if(year<1000, year>2000)
{
printf("The input value does not match the range.");
}
else
{
if (year % 4 == 0)
{
if (year % 100 != 0)
printf("This year is a leap year.");
else if (year % 400 == 0)
printf("This year is ?a leap year.");
else if (year % 400 != 0)
printf("This year in not a leap year.");
}
if (year % 4 != 0)
printf("This year is not a leap year.");
}
system("pause");
return 0;
}
總結
以上是生活随笔為你收集整理的TODAY'S PRATICE的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Spring Security OAut
- 下一篇: go best pratice 记录