#include
int main()
system("pause");
return 0;
}2.寫程式求一元二次方程的解。
#define m 0.000001
#include
#include
int main()
if(n<0)
}system("pause");
return 0;
}3.練習:編寫**,演示多個字元從兩端移動,向中間匯聚。
#include
#include
int main()
;char arr2=;
int i=0;
int j=strlen(arr1)-1;
while(i<=j)
system("pause");
return 0;
}4.編寫**實現,模擬使用者登入情景,並且只能登入三次。
#include
int main()
else
}if(i==3)
system("pause");
return 0;
}5.在螢幕上輸出1,3,……11,13菱形圖案:
方法一#include
int main()
for(j=1;j<=2*i-1; j++)
printf("\n");
}for(i=n; i>0; i--)
for(j=2*i-1; j>0; j--)
printf("\n");
}system("pause");
return 0;
}方法二
#include
int main()
;char arr2=;
char arr3=;
int i=strlen(arr1)/2;
int j=strlen(arr2)/2;
while(i>=0)
i=0;
j=12;
while(i<=j)
system("pause");
return 0;
}6.求出0~999之間的所有「水仙花數」並輸出
#include
#include
int main()
if(sum==i)
sum=0;
}system("pause");
return 0;
}7.求sn=a+aa+aaa+aaaa+aaaaa的前5項之和,其中a是乙個數字
#include
#include
int main()
printf("%d\n",sum);
system("pause");
return 0;
}
今日所學 HTML基礎
今天主要學了有關html中的知識,主要有一些文字屬性和 屬性,下面通過 進行說明 一 文字屬性 學習使我快樂 學習使我快樂 學習使我快樂 csdn 京東標題標籤 水平線標籤 段落標籤 字型標籤 屬性 size 指定內容的文字大小 color 指定內容的顏色 face 指定內容的字型 加粗 斜體 下劃...
今日學習日誌
總結 疑問和faq 1 關於巨集定義的 段也叫巨集函式 應當採用 define foo dowhile 0 這個方式定義的巨集可以很好的被保護起來 不會發生 段預處理時產生的歧義 2 register關鍵字定義的變數儲存在cpu的快取記憶體cache區 並非普通的暫存器 可以使用的cache區大小由...
今日Java學習
算數運算子 包括 一元運算子 二元運算子 取模運算子 符號和左邊操作符相同,比如 7 3 1 7 3 7 3 1 賦值運算子 a b a a b a b a a b a b a a b a b a a b 關係運算子 結果是布林值 false true 等於 大於 不等於 小於 大於等於 小於等於 ...