程序設計練習題

算法競賽入門經(jīng)典

習題1-1平均數(shù)

#include<stdio.h>
int main() {

    int a, b, c, sum;
    float average;
    scanf("%d%d%d", &a, &b, &c);
    sum = a + b + c;
    average = sum / 3;
    printf("%.3f \n", average);

    return 0;

}

習題1-2溫度

#pragma warning(disable:4996)
#include<stdio.h>
int main() {

    float f, c;
    scanf("%f", &f);
    c = 5 * (f - 32) / 9;
    printf("%.3f", c);

}

習題1-3

#pragma warning(disable:4996)
#include<stdio.h>
int main() {

    int n, sum;
    scanf("%d", &n);
    sum = (1 + n) * n / 2;
    printf("%d", sum);

}

習題1-4

#include<stdio.h>
#include<math.h>
#define PI 3.14159265
int main() {

    double n, sinn = 0, cosn = 0;
    double m, val;
    //printf("%f", n);
    scanf("%lf", &n);
    val = PI / 180;
    sinn = sin(n * val);
    cosn = cos(n * val);
    printf("%.3f %.3f\n", sinn, cosn);
    return 0;
}

習題1-5

#include<stdio.h>

int main() {

    int price = 95, n = 0;
    double sum;
    scanf("%d", &n);
    sum = n * price;
    if (sum >= 300) {
        sum = sum * 0.85;
        printf("%.2f", sum);
    }

    return 0;
}

習題1-6

#pragma warning(disable:4996)
#include<stdio.h>

int main() {

    int a, b, c;
    int a2, b2, c2;

    scanf("%d%d%d", &a, &b, &c);
    a2 = a * a;
    b2 = b * b;
    c2 = c * c;
    if ((a + b > c) && (a + c > b) && (b + c > a)) {
        if ((a2 + b2 == c2) || (a2 + c2 == b2) || (b2 + c2 == a2)) {
            printf("yes");
        }
        else {
            printf("no");
        }
    }
    else {
        printf("not a triangle");
    }

}

習題1-7

#pragma warning(disable:4996)
#include<stdio.h>

int main() {

    int year;
    scanf("%d", &year);
    if ((year % 4 == 0 && year % 100 != 0) ||(year % 400 == 0)) {
        printf("yes");

    
    
    }
    else {
        printf("no");
    }

}

習題2-1水仙花數(shù)

#pragma warning(disable:4996)
#include<stdio.h>
int main() {
    int i = 100;
    for (i = 100; i <= 999; i++) {
        int a = 0, b = 0, c = 0;
        a = i % 10;
        b = (i /10)% 10;
        c = i /100;
        if ((a * a*a  + b * b*b + c * c *c== i)) {
            printf("%d\n", i);
        }
    }
}

習題2-2韓信點兵

#pragma warning(disable:4996)
#include<stdio.h>
int main() {
    int i = 10;

    int a, b, c, kase = 0;
    while (scanf("%d%d%d", &a, &b, &c) == 3) {
        kase =kase+1;
        int m = -1;
        for (i = 10; i <= 100; i++) {
            if (i % 3 == a && i % 5 == b && i % 7 == c) {
                m = i;
                break;
            }
        }
        if (m != -1) {
                printf("case %d: %d\n", kase, m);
            }
            else {
                printf("case %d: No answer\n",kase);
            }
    }
}

習題2-3倒三角形

#pragma warning(disable:4996)
#include<stdio.h>
int main() {
    int n = 0;
    scanf("%d", &n);
    for (int i = n; i > 0; i--) {//按行輸入
    
            for (int j = n - i; j > 0; j--) {//輸出空格
                printf(" ");
            }
            for (int j = 0; j < 2 * i - 1; j++) {
                printf("#");//輸出#
            }
            printf("\n");//換行
        }
    
}

習題2-4子序列的和

#pragma warning(disable:4996)
#include<stdio.h>
int main() {
    int kase = 0;
    int n=1,m;
    while (scanf("%d%d", &n, &m) == 2 && n != 0) {
        kase += 1;
        double num = 0;
        for (long long  i = n; i <=m; i++) {
            num += 1.0 / (i * i);
        }
        printf("Case %d: %.5f", kase, num);
    
    }
}

習題2-5分數(shù)化小數(shù)

#pragma warning(disable:4996)
#include<stdio.h>
int main() {
    int kase = 0;
    int a, b, c;
    double num = 0;
    while (scanf("%d%d%d", &a, &b, &c ) == 3 && a != 0) {
        kase += 1;
        num = (a*1.0) / b;
        printf("Case %d: %.*f", kase,c,num );
//
    
    }
    return 0;
}

習題2-6排列

#pragma warning(disable:4996)

#include<stdio.h>
#include<iostream>
#include<set>
using namespace std;
int main() { 
    int a, b, c;
    for (int i = 123; i < 329; i++) {
        set <int> s;//使用set中元素不可重復這一性質(zhì)
        int a1 , a2 , a3 ,b1 , b2 , b3, c1 , c2 , c3 ;
        a = i;
        b = i * 2;
        c = i * 3;
        a1 = a % 10;
        a2 = a / 10 % 10;
        a3 = a / 100;
        b1 = b % 10;
        b2 = b / 10 % 10;
        b3 = b /100;
        c1 = c % 10;
        c2 = c / 10 % 10;
        c3 = c / 100;
        s.insert(a1);
        s.insert(a2);
        s.insert(a3);
        s.insert(b1);
        s.insert(b2);
        s.insert(b3);
        s.insert(c1);
        s.insert(c2);
        s.insert(c3);
        
        if ((b<=987&&c<=987)&&s.size()==9&&s.count(0)==0) {//需要判斷是否存在0
            printf("%d %d %d\n", a, b, c);
        }
}
    return 0;
}

例3-3蛇形填數(shù)

#include<stdio.h>
#include<string.h>
#include<ctype.h>
#define max 250
int a[max][max];

 int main(){
     int n, x, y;
     int  tot = 0;
     scanf("%d", &n);
     memset(a, 0, sizeof(a));
     tot = a[x = 0][y = n - 1] = 1;//使得第一個元素為1;

     
     while (tot < n * n) {
         while (x + 1 < n && !a[x + 1][y]) {
             x = x + 1;//x遞增1
             tot = tot + 1;
             a[x][y] = tot;
         }
         while (y - 1 >= 0 && !a[x][y - 1]) {
             y = y - 1;
             tot = tot + 1;
             a[x][y] = tot;

         }
         while (x - 1 >= 0 && !a[x - 1][y]) {
             x = x - 1;
             tot = tot + 1;
             a[x][y] = tot;

         }
         while (y + 1 < n && !a[x][y + 1])
         {
             y = y + 1;
             tot = tot + 1;
             a[x][y] = tot;
         }
     }
     for (x = 0; x < n; x++) {
         for (y = 0; y < n; y++) {
             printf("%3d", a[x][y]);
             
         }
         printf("\n");
     }
     return 0;
}

循環(huán)單詞

#pragma warning(disable:4996)
#include <string.h>
#include <cstdio>
#include<cstdlib>
#include<iostream>
#include<string>
#include<math.h>
using namespace std;
#define max 100
int  getAnswer(string s1,string s2){
    for (int i = 0; i< s1.size(); i++) {
        for (int j = 0; j< s2.size(); j++) {
            if (s1[i] == s2[j] && j == s2.size() - 1) {
                return 1;
            }
            else {
                continue;
            }
        }
    }
    return 0;
}
int main()
{
    int a;
    cin >> a;
        int flag[max] = { 0 };
        char  s[10][30];
        for (int i = 0; i < a; i++) {
            scanf("%s", s[i]);
        }
        int count = 0;
        for (int j = 0; j < a; j++) {
            for (int m = j + 1; m < a; m++) {
                if (strlen(s[j]) != strlen(s[m])) {
                    break;
                }
                else {
                    string s1;
                    string s2;
                    string s3;
                    s1 = s[j];
                    s2 = s[m];
                    s3 = s1 + s1;
                    int f;
                    f = getAnswer(s3, s1);
                    if (flag[j]==0) {
                        count += f;
                    }
//這兩行用去去重,確定共有幾個單詞模塊
                    flag[m] = f;
                    flag[j] = f;
                }
            }
        }
        cout << count << endl;
    return 0;
}




最后編輯于
?著作權歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末店溢,一起剝皮案震驚了整個濱河市忘嫉,隨后出現(xiàn)的幾起案子健田,更是在濱河造成了極大的恐慌,老刑警劉巖抛杨,帶你破解...
    沈念sama閱讀 212,383評論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件驼抹,死亡現(xiàn)場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機丈甸,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,522評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來尿褪,“玉大人睦擂,你說我怎么就攤上這事≌攘幔” “怎么了顿仇?”我有些...
    開封第一講書人閱讀 157,852評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長。 經(jīng)常有香客問我臼闻,道長鸿吆,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,621評論 1 284
  • 正文 為了忘掉前任述呐,我火速辦了婚禮惩淳,結果婚禮上,老公的妹妹穿的比我還像新娘乓搬。我一直安慰自己思犁,他們只是感情好,可當我...
    茶點故事閱讀 65,741評論 6 386
  • 文/花漫 我一把揭開白布进肯。 她就那樣靜靜地躺著激蹲,像睡著了一般。 火紅的嫁衣襯著肌膚如雪江掩。 梳的紋絲不亂的頭發(fā)上学辱,一...
    開封第一講書人閱讀 49,929評論 1 290
  • 那天,我揣著相機與錄音环形,去河邊找鬼项郊。 笑死,一個胖子當著我的面吹牛斟赚,可吹牛的內(nèi)容都是我干的着降。 我是一名探鬼主播,決...
    沈念sama閱讀 39,076評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼拗军,長吁一口氣:“原來是場噩夢啊……” “哼任洞!你這毒婦竟也來了?” 一聲冷哼從身側響起发侵,我...
    開封第一講書人閱讀 37,803評論 0 268
  • 序言:老撾萬榮一對情侶失蹤交掏,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后刃鳄,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體盅弛,經(jīng)...
    沈念sama閱讀 44,265評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,582評論 2 327
  • 正文 我和宋清朗相戀三年叔锐,在試婚紗的時候發(fā)現(xiàn)自己被綠了挪鹏。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,716評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡愉烙,死狀恐怖讨盒,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情步责,我是刑警寧澤返顺,帶...
    沈念sama閱讀 34,395評論 4 333
  • 正文 年R本政府宣布禀苦,位于F島的核電站,受9級特大地震影響遂鹊,放射性物質(zhì)發(fā)生泄漏振乏。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 40,039評論 3 316
  • 文/蒙蒙 一秉扑、第九天 我趴在偏房一處隱蔽的房頂上張望昆码。 院中可真熱鬧,春花似錦邻储、人聲如沸赋咽。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,798評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽脓匿。三九已至,卻和暖如春宦赠,著一層夾襖步出監(jiān)牢的瞬間陪毡,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,027評論 1 266
  • 我被黑心中介騙來泰國打工勾扭, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留毡琉,地道東北人。 一個月前我還...
    沈念sama閱讀 46,488評論 2 361
  • 正文 我出身青樓妙色,卻偏偏與公主長得像桅滋,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子身辨,可洞房花燭夜當晚...
    茶點故事閱讀 43,612評論 2 350

推薦閱讀更多精彩內(nèi)容