今晚,我想來點「麥克鷄塊」。
這個時代,各家企業都想推出屬於公司理念的字體,作為行銷與推廣之用。而家喻戶曉的國際連鎖速食店「麥當勞」,也來湊一咖,與臺灣知名字體設計公司「Justfont」,一起合作推出了「麥克鷄塊體」,讓廣大的饕客們,一飽眼福!
來源/字戀 |
今晚,我想來點「麥克鷄塊」。
這個時代,各家企業都想推出屬於公司理念的字體,作為行銷與推廣之用。而家喻戶曉的國際連鎖速食店「麥當勞」,也來湊一咖,與臺灣知名字體設計公司「Justfont」,一起合作推出了「麥克鷄塊體」,讓廣大的饕客們,一飽眼福!
來源/字戀 |
振興優惠爽翻天,餐餐優惠吃更省!
麥當勞線上優惠券又來了!想撿便宜的,不用再天天設「麥當勞報報」APP鬧鐘了,也不一定能抽到想要吃的東西。現在手機上「麥當勞年末振興優惠券」網站,向店員出示優惠券畫面,即可「無限次數」直接兌換優惠券的美食!
播YouTube影片的時候,想必都有看過這個畫面:
逼得你想按「略過廣告」,但又無法略過,YouTube就是要你看完,誘惑你按下訂閱「YouTube Premium」,才能播你想看的影片。
不過每當編者看到廣告的時候,就會想著背景音樂是怎麼配上這個廣告的,其實聽起滿不錯的(聽多了還是會厭惡)。所以下方就來介紹這首歌吧!
資訊
My Own Thing(我的東西)
Provided to YouTube by DistroKid(DistroKid 授權給 YouTube)
Soul City (feat. Nicole Boggs)
歌詞
Yeah I'm the one and only
I'm the original
Others may try to clone me
#include <stdio.h>
void bubble_sort (int *param, int size)
{
bool not_sorted = true; //stop if already sorted
for (int min = 0; min < size && not_sorted; min++)
{
not_sorted = false;
for (int max = size; max > min; max--)
{
if (param[max - 1] > param[max]) //not what we want
{
int temp = param[max - 1];
param[max - 1] = param[max];
param[max] = temp;
not_sorted = true;
}
}
}
}
int main()
{
int array[10] = {1, 3, 5, 2, 7, 8, 0, 4, 6, 9};
bubble_sort(array, 10);
for (int i = 0; i < 9; i++)
printf("%d, ", array[i]);
printf("%d", array[9]);
}